home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / ScrollDoodScroll / TileScrollView.h < prev    next >
Text File  |  1992-05-28  |  616b  |  27 lines

  1. // TileScrollView.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7. #import <appkit/ScrollView.h>
  8.  
  9.  
  10. @interface TileScrollView:ScrollView
  11.  
  12. {
  13.      id        popupListButton, popupList, rulerView, rulerClipView, stubView;
  14.      float    oldScaleFactor;
  15. }
  16.  
  17. /* instance methods */
  18. - initFrame:(const NXRect *)theFrame;
  19. - free;
  20. - changeScale:sender;
  21. - tile;
  22. - scrollClip:aClipView to:(NXPoint *)aPoint;
  23. - setDocView:aView;
  24. - (void)fixUpRuler;
  25.  
  26. @end
  27.